home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_C / ARC_SGML / SGMLH / SGMLINCL.H < prev    next >
Text File  |  1991-07-03  |  2KB  |  35 lines

  1. /******************************************************************************/
  2. /* SGMLINCL.H: Include file for PC-DOS implementations.
  3. */
  4. #ifndef SGMLINCL              /* Don't include this file more than once. */
  5. #define SGMLINCL
  6. /******************************************************************************/
  7. #include "entity.h"           /* Templates for entity control blocks. */
  8. /******************************************************************************/
  9. #include "action.h"           /* Action names for all parsing. */
  10. #define AL al                 /* Ptr to attribute list. */
  11. #include "adl.h"              /* Definitions for attribute list processing. */
  12. #include "error.h"            /* Symbols for error codes. */
  13. #include "etype.h"            /* Definitions for element type processing. */
  14. #include "keyword.h"          /* Definitions for keyword processing. */
  15. #include "lextoke.h"          /* Symbols for tokenization lexical classes. */
  16. #define SCB scbs[es]          /* Ptr to current source control block. */
  17. #include "source.h"           /* Templates for source entity control blocks. */
  18. #include "sgmlcb.h"           /* Symbols for SGML service control blocks. */
  19. #include "synxtrn.h"          /* Declarations for concrete syntax constants. */
  20. #include "sgmlxtrn.h"         /* External variable declarations. */
  21. #ifndef FINAL
  22. #include "trace.h"            /* Declarations for internal trace functions. */
  23. #endif
  24. /******************************************************************************/
  25. #include "sgmlfnsm.h"         /* ANSI C: Declarations for SGML functions. */
  26. /******************************************************************************/
  27. /*lint -library                  Ignore failure to use library functions. */
  28. #include <stdio.h>            /* Stream I/O functions. */
  29. #include <stdlib.h>           /* Common types, variables, and functions. */
  30. #include <string.h>           /* Memory and string functions. */
  31. /*lint -restore                  End of library function declarations. */
  32. /******************************************************************************/
  33. #endif /* ndef SGMLINCL */
  34. /******************************************************************************/
  35.